home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / rsh_null.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  69 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10096);
  10.  script_cve_id("CVE-1999-0180");
  11.  script_version ("$Revision: 1.5 $");
  12.  
  13.  
  14.  name["english"] = "rsh with null username";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18.  It is possible to execute arbitrary command on this host
  19.  using rsh by supplying a NULL username.
  20.  
  21.  
  22. Risk factor : High";
  23.  
  24.  
  25.  
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "attempts to log in using rsh";
  30.  
  31.  script_summary(english:summary["english"]);
  32.  
  33.  script_category(ACT_GATHER_INFO);
  34.  
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison",
  37.         francais:"Ce script est Copyright (C) 2002 Renaud Deraison");
  38.  family["english"] = "Gain a shell remotely";
  39.  family["francais"] = "Obtenir un shell α distance";
  40.  script_family(english:family["english"], francais:family["francais"]);
  41.  script_dependencie("find_service.nes", "rsh.nasl");
  42.  script_require_ports("Services/rsh", 514);
  43.  script_require_keys("rsh/active");
  44.  exit(0);
  45. }
  46.  
  47.  
  48.  
  49. port = get_kb_item("Services/rsh");
  50. if(!port)port = 514;
  51. if(!get_port_state(port))exit(0);
  52.  
  53. soc = open_priv_sock_tcp(dport:port);
  54. if(soc)
  55. {
  56.  s1 = raw_string(0);
  57.  s2 = raw_string(0) +  raw_string(0) + "id" + raw_string(0);
  58.  send(socket:soc, data:s1);
  59.  send(socket:soc, data:s2);
  60.  a = recv(socket:soc, length:1024, min:1);
  61.  if(strlen(a) == 0)exit(0);
  62.  a = recv(socket:soc, length:1024);
  63.  if(egrep(string:a, pattern:"^uid.*$"))
  64.  {
  65.   security_hole(port);
  66.  }
  67.  close(soc);
  68. }
  69.